home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / getttyent.0 < prev    next >
Text File  |  1996-09-02  |  5KB  |  114 lines

  1.  
  2. GETTTYENT(3)               UNIX Programmer's Manual               GETTTYENT(3)
  3.  
  4. NNAAMMEE
  5.      ggeettttttyyeenntt, ggeettttttyynnaamm, sseettttttyyeenntt, eennddttttyyeenntt - get ttys file entry
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ttttyyeenntt..hh>>
  9.  
  10.      _s_t_r_u_c_t _t_t_y_e_n_t _*
  11.      ggeettttttyyeenntt()
  12.  
  13.      _s_t_r_u_c_t _t_t_y_e_n_t _*
  14.      ggeettttttyynnaamm(_c_h_a_r _*_n_a_m_e)
  15.  
  16.      _i_n_t
  17.      sseettttttyyeenntt(_v_o_i_d)
  18.  
  19.      _i_n_t
  20.      eennddttttyyeenntt(_v_o_i_d)
  21.  
  22. DDEESSCCRRIIPPTTIIOONN
  23.      The ggeettttttyyeenntt(), and ggeettttttyynnaamm() functions each return a pointer to an
  24.      object, with the following structure, containing the broken-out fields of
  25.      a line from the tty description file.
  26.  
  27.      struct ttyent {
  28.              char    *ty_name;       /* terminal device name */
  29.              char    *ty_getty;      /* command to execute */
  30.              char    *ty_type;       /* terminal type */
  31.      #define TTY_ON          0x01    /* enable logins */
  32.      #define TTY_SECURE      0x02    /* allow uid of 0 to login */
  33.      #define TTY_LOCAL       0x04    /* set 'CLOCAL' on open (dev. specific) */
  34.      #define TTY_RTSCTS      0x08    /* set 'CRTSCTS' on open (dev. specific) */
  35.      #define TTY_SOFTCAR     0x10    /* ignore hardware carrier (dev. spec.) */
  36.      #define TTY_MDMBUF      0x20    /* set 'MDMBUF' on open (dev. specific) */
  37.              int     ty_status;      /* flag values */
  38.              char    *ty_window;     /* command for window manager */
  39.              char    *ty_comment;    /* comment field */
  40.      };
  41.  
  42.      The fields are as follows:
  43.  
  44.      _t_y___n_a_m_e     The name of the character-special file.
  45.  
  46.      _t_y___g_e_t_t_y    The name of the command invoked by init(8) to initialize tty
  47.                  line characteristics.
  48.  
  49.      _t_y___t_y_p_e     The name of the default terminal type connected to this tty
  50.                  line.
  51.  
  52.      _t_y___s_t_a_t_u_s   A mask of bit fields which indicate various actions allowed
  53.                  on this tty line.  The possible flags are as follows:
  54.  
  55.                  TTY_ON       Enables logins (i.e., init(8) will start the
  56.                               command referenced by _t_y___g_e_t_t_y on this entry).
  57.  
  58.                  TTY_SECURE   Allow users with a uid of 0 to login on this
  59.                               terminal.
  60.  
  61.                  TTY_LOCAL    If the terminal port's driver supports it, cause
  62.                               the line to be treated as ``local.''
  63.  
  64.                  TTY_RTSCTS   If the terminal port's driver supports it, use
  65.                               full-duplex RTS/CTS hardware flow control on the
  66.  
  67.                               line by default.
  68.  
  69.                  TTY_SOFTCAR  If the terminal port's driver supports it, ig-
  70.                               nore hardware carrier on the line.
  71.  
  72.      _t_y___w_i_n_d_o_w   The command to execute for a window system associated with
  73.                  the line.
  74.  
  75.      _t_y___c_o_m_m_e_n_t  Any trailing comment field, with any leading hash marks
  76.                  (``#'') or whitespace removed.
  77.  
  78.      If any of the fields pointing to character strings are unspecified, they
  79.      are returned as null pointers.  The field _t_y___s_t_a_t_u_s will be zero if no
  80.      flag values are specified.
  81.  
  82.      See ttys(5) for a more complete discussion of the meaning and usage of
  83.      the fields.
  84.  
  85.      The ggeettttttyyeenntt() function reads the next line from the ttys file, opening
  86.      the file if necessary.  The sseettttttyyeenntt() function rewinds the file if
  87.      open, or opens the file if it is unopened.  The eennddttttyyeenntt() function
  88.      closes any open files.
  89.  
  90.      The ggeettttttyynnaamm() function searches from the beginning of the file until a
  91.      matching _n_a_m_e is found (or until EOF is encountered).
  92.  
  93. RREETTUURRNN VVAALLUUEESS
  94.      The routines ggeettttttyyeenntt() and ggeettttttyynnaamm() return a null pointer on EOF or
  95.      error.  The sseettttttyyeenntt() function and eennddttttyyeenntt() return 0 on failure and
  96.      1 on success.
  97.  
  98. FFIILLEESS
  99.      /etc/ttys
  100.  
  101. SSEEEE AALLSSOO
  102.      login(1),  ttyslot(3),  gettytab(5),  termcap(5),  ttys(5),  getty(8),
  103.      init(8),  ttyflags(8)
  104.  
  105. HHIISSTTOORRYY
  106.      The ggeettttttyyeenntt(), ggeettttttyynnaamm(), sseettttttyyeenntt(), and eennddttttyyeenntt() functions ap-
  107.      peared in 4.3BSD.
  108.  
  109. BBUUGGSS
  110.      These functions use static data storage; if the data is needed for future
  111.      use, it should be copied before any subsequent calls overwrite it.
  112.  
  113. 4.3 Berkeley Distribution        June 4, 1993                                2
  114.